home *** CD-ROM | disk | FTP | other *** search
/ funcom 2000 Presskit / 000721_1312 (fun.com).iso / index.dir / 00006_Script_check mouse < prev    next >
Text File  |  2000-04-18  |  435b  |  19 lines

  1. on checkMouse
  2.   global mousePos, film
  3.   set mousePos = the mouseH
  4.   if 293< the mouseH and the mouseH < 390 then 
  5.     set film = "funcom"    
  6.   end if
  7.   if 390< the mouseH and the mouseH < 503 then 
  8.     set film = "noescape"    
  9.   end if
  10.   if 503< the mouseH and the mouseH < 589 then 
  11.     set film = "cmx2"    
  12.   end if
  13.   if 589< the mouseH and the mouseH < 800 then 
  14.     set film = "anarchy"    
  15.   end if
  16.   
  17.   
  18. end
  19.